home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / FunctionSetInfo / Sources / MathFSetAdd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  322 b   |  24 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MathFSetAdd.c
  3.  
  4.     Contains:    Implementation of the MathFSetAdd function set.
  5.  
  6.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10.  
  11. #ifndef __MATHFSET__
  12. #include "MathFSet.h"
  13. #endif
  14.  
  15. int MathFunction1(int a, int b)
  16. {
  17.     return a + b;
  18. }
  19.  
  20. int MathFunction2(int a, int b, int c)
  21. {
  22.     return a + b + c;
  23. }
  24.